Next: Association Lists, Previous: Method Invocation, Up: Top [Contents][Index]
Now that we know how to create classes, access slots, and define methods, it might be useful to verify that everything is doing ok. To help with this a plethora of predicates have been created.
Return the class that symbol represents. If
there is no class, nil is returned if
errorp is nil. If errorp
is non-nil, wrong-argument-type is
signaled.
Return t if class is a valid class
vector. class is a symbol.
Non-nil if object-or-class has
slot.
Non-nil if OBJECT’s slot is
bound. Setting a slot’s value makes it bound. Calling
slot-makeunbound will make a slot unbound.
object can be an instance or a class.
Return a string of the form ‘#<class myclassname>’ which should look similar to other Lisp objects like buffers and processes. Printing a class results only in a symbol.
Return the value in CLASS of a given OPTION. For example:
(class-option eieio-default-superclass :documentation)
Will fetch the documentation string for
eieio-default-superclass.
Return a string of the form ‘#<object-class
myobjname>’ for obj. This should
look like Lisp symbols from other parts of Emacs such as
buffers and processes, and is shorter and cleaner than
printing the object’s vector. It is more useful to use
object-print to get and object’s print
form, as this allows the object to add extra display
information into the symbol.
Returns the class symbol from obj.
Returns the symbol of obj’s class.
Returns the direct parents class of class.
Returns nil if it is a superclass.
Just like eieio-class-parents except it is a
macro and no type checking is performed.
Deprecated function which returns the first parent of class.
Return the list of classes inheriting from class.
Just like eieio-class-children, but with no
checks.
Returns t if obj’s class is
the same as class.
Same as same-class-p except this is a macro
and no type checking is performed.
Returns t if obj inherits anything
from class. This is different from
same-class-p because it checks for
inheritance.
Returns t if child is a subclass
of class.
Returns t if method-symbol is a
generic function, as opposed to a regular Emacs Lisp
function.
Next: Association Lists, Previous: Method Invocation, Up: Top [Contents][Index]